<p class="Paragraph"><help:paragraphinfo state="U" number="6" xmlns:help="http://openoffice.org/2000/help"/><span class="T1">Result:</span> Any numeric variable that contains the result of the implication.</p>
<p class="Paragraph"><help:paragraphinfo state="U" number="7" xmlns:help="http://openoffice.org/2000/help"/><span class="T1">Expression1, Expression2:</span> Any expressions that you want to evaluate with the Imp operator.</p>
<p class="Paragraph"><help:paragraphinfo state="U" number="8" xmlns:help="http://openoffice.org/2000/help"/>If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False.</p>
<p class="Paragraph"><help:paragraphinfo state="U" number="9" xmlns:help="http://openoffice.org/2000/help"/>If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression.</p>
<p class="PropText"><help:paragraphinfo state="U" number="12" xmlns:help="http://openoffice.org/2000/help"/>Dim vA as Variant, vB as Variant, vC as Variant, vD as Variant</p>
<p class="PropText"><help:paragraphinfo state="U" number="13" xmlns:help="http://openoffice.org/2000/help"/>Dim vOut as Variant</p>
<p class="PropText"><help:paragraphinfo state="U" number="14" xmlns:help="http://openoffice.org/2000/help"/>A = 10: B = 8: C = 6: D = Null</p>
<p class="PropText"><help:paragraphinfo state="U" number="15" xmlns:help="http://openoffice.org/2000/help"/>vOut = A > B Imp B > C <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM returns -1</p>
<p class="PropText"><help:paragraphinfo state="U" number="16" xmlns:help="http://openoffice.org/2000/help"/>vOut = B > A Imp B > C <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM returns 0</p>
<p class="PropText"><help:paragraphinfo state="U" number="17" xmlns:help="http://openoffice.org/2000/help"/>vOut = A > B Imp B > D <text:s text:c="2" xmlns:text="http://openoffice.org/2000/text"/>REM returns -1</p>
<p class="PropText"><help:paragraphinfo state="U" number="18" xmlns:help="http://openoffice.org/2000/help"/>vOut = (B > D Imp B > A) REM returns 0</p>
<p class="PropText"><help:paragraphinfo state="U" number="19" xmlns:help="http://openoffice.org/2000/help"/>vOut = B Imp A <text:s text:c="10" xmlns:text="http://openoffice.org/2000/text"/>REM returns -3</p>